SetCurrentTimeFloat Subroutine

private subroutine SetCurrentTimeFloat(time, layer)

set the current time of a float grid

Arguments

Type IntentOptional Attributes Name
type(DateTime), intent(in) :: time
type(grid_real), intent(inout) :: layer

Source Code

SUBROUTINE SetCurrentTimeFloat &
!
(time, layer)

IMPLICIT NONE

!Arguments with intent(in):
TYPE (DateTime), INTENT(IN) :: time

!Arguments with intent(out):
TYPE(grid_real), INTENT(INOUT) :: layer

!------------end of declaration------------------------------------------------

layer % current_time = time

END SUBROUTINE SetCurrentTimeFloat